home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / dragracer.swf / scripts / DefineButton2_451 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-10-06  |  444 b   |  15 lines

  1. on(release){
  2.    if(_root.player.cash - _root[viewcar].carworth >= 0)
  3.    {
  4.       _root.player.cash -= _root[viewcar].carworth;
  5.       _root.BuyCar(_root.car,_root[viewcar]);
  6.       _root.prompt("Car Purchased","You Have Purchased a " add _root[viewcar].fullname,2);
  7.       this.removeMovieClip();
  8.    }
  9.    else
  10.    {
  11.       _root.prompt("!!!","You Can\'t Purchase a " add _root[viewcar].fullname,2);
  12.       this.removeMovieClip();
  13.    }
  14. }
  15.